Fix notifications on non-existant "enable_arrow_keys". (#53753, Skip
authorOwen Taylor <otaylor@redhat.com>
Fri, 1 Jun 2001 17:46:45 +0000 (17:46 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 1 Jun 2001 17:46:45 +0000 (17:46 +0000)
Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>

* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkcombo.c

index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 83244f90b4f45de28b220e1bda7043f0a832c78e..e3377ac8e15694f7a4c1ef631f1fca8a99dd19a1 100644 (file)
@@ -1,3 +1,9 @@
+Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix 
+       notifications on non-existant "enable_arrow_keys".
+       (#53753, Skip Montanaro)
+
 Fri Jun  1 11:31:55 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gdk/gdkrectangle.c (gdk_rectangle_get_type): Add 
index 0d68fb0d4f6cf8e25c9e934a5546eafb73b98f07..1d11930292278bca331e81d57bd8a5edb3fbacc6 100644 (file)
@@ -893,7 +893,7 @@ gtk_combo_set_use_arrows (GtkCombo * combo, gboolean val)
   g_return_if_fail (GTK_IS_COMBO (combo));
 
   combo->use_arrows = val;
-  g_object_notify (G_OBJECT (combo), "enable_arrows");
+  g_object_notify (G_OBJECT (combo), "enable_arrow_keys");
 }
 
 void
@@ -904,7 +904,7 @@ gtk_combo_set_use_arrows_always (GtkCombo * combo, gboolean val)
 
   combo->use_arrows_always = val;
   combo->use_arrows = TRUE;
-  g_object_notify (G_OBJECT (combo), "enable_arrows");
+  g_object_notify (G_OBJECT (combo), "enable_arrow_keys");
   g_object_notify (G_OBJECT (combo), "enable_arrows_always");
 }